|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ServiceLocator.java | - | - | - | - |
|
||||||||||||||
| 1 |
package org.marketchangers;
|
|
| 2 |
|
|
| 3 |
/**
|
|
| 4 |
* @author <a href="mailto:mtodd@wc-group.com">Matthew Todd</a>
|
|
| 5 |
*/
|
|
| 6 |
public interface ServiceLocator { |
|
| 7 |
public static final String KEY = ServiceLocator.class.getName(); |
|
| 8 |
public Object get(Class key);
|
|
| 9 |
} |
|
| 10 |
|
|
||||||||||